home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
1,000+ Great Games
/
1_1000 Games.iso
/
DOSGAMES
/
BOGGLE.ZIP
/
SOURCE.ZIP
/
RANDOM.HPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-03-03
|
341 b
|
22 lines
#ifndef RANDOM_H
#define RANDOM_H
#include <time.h>
#include <stdlib.h>
#include <string.h>
//_CLASSDEF(Random)
class Random {
int cube_array[16];
public:
void perm();
int getValue(int); //return the value at the ith index of
}; // cube_array.
#endif